/* Tipografía moderna */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f3eb;
  color: #111;
  line-height: 1.6;
  
}

:root {
  --altura_header: 70px;
  --color_primario:  #ff008c; /* o el color principal de tu marca */
  --color_primario_suave: #ff1495; /* tono más claro para hover o fondo */
  --color_blanco: #fff;
  --padding_left_right: 2rem;
}


.header {
    height: var(--altura_header);
    background-color: var(--color_primario);
    
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 var(--padding_left_right);
    
}

.menu_hamburguesa {
    display: none;

}

.menu_hamburguesa:checked+.ul_links {
    height: calc(100vh - var(--altura_header));
}



.logo {
    width: auto;
    height: 75px;
}

.list_icon {
    color: var(--color_blanco);
    cursor: pointer;
}



.ul_links {
    width: 100%;
    position: absolute;
    top: var(--altura_header);
    left: 0;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: all .3s;
    list-style: none;
    z-index: 9999;
    background-color: var(--color-primario);
}



.link {
    font-size: 2rem;
    color: var(--color_blanco);
    font-weight: bold;
    text-decoration: none;
}

@media (min-width:768px) {
    .label_hamburguesa {
        display: none;
    }

    .ul_links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        gap: 2rem;
    }

    .link {
        font-size: 1.2rem;
        transition: all .3s;
        padding: .2rem .7rem;
    }

    .link:hover {
        background-color: #7b0144;
}
}

/*///////////// HOME ////////////////// */

/* QUIZ */


.quiz-home-container {
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 2rem;
}
  
#quiz-home h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}


.quiz-home-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; 
  margin-bottom: 2rem;
}

.quiz-home-container img {
  width: 100%;
  border-radius: 6px;
}

.quiz-home-container h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.quiz-home-container p {
  font-size: 1rem;
  color: #333;
}

  #quiz-home .quiz-home-btn {
    background-color: #ff1493;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    margin-top: 1rem;
  }

.quiz-home-btn:hover {
  background-color: #f9f9f9;
}



/* 🔸 ESTRUCTURA DE SECCIONES */


body.home .seccion {
  padding-left: var(--padding_left_right);
  padding-right: var(--padding_left_right);
}
.divider {
  width: 80%;
  margin: 4rem auto;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* 🔸 SLIDER */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.slide-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: white;
}

.slide-content h4 {
  font-weight: 200;
}

.slide-content h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primario)
}

#inicio h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}


.btn {
  background-color: #ff1493;
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  margin-top: 0.8rem;
  display: inline-block;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #d90f7a;
}

/* 🔸 SLIDER - Ajuste desktop */
@media (min-width: 992px) {
  .slider {
    width: 100vw;
    margin-left: calc(-1 * var(--padding_left_right));
  }

  .slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    filter: grayscale(100%);
  }
  body.home .seccion {
    padding-left: var(--padding_left_right);
    padding-right: var(--padding_left_right);
  }
}


/* 🔸 COMUNIDAD */

.inline-reply textarea {
  font-family: inherit;
  font-size: 0.9rem; 
}

#comunidad {
  text-align: left;
  margin-top: 2rem;
}

#comunidad h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}

#comunidad p {
  max-width: 600px;
  margin-bottom: 2rem;
}

.comunidad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.comunidad-grid a.comunidad-item {
  display: block;
  text-decoration: none;
}

.comunidad-item {
  background-color: #ff1493;
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.comunidad-item:hover {
  transform: scale(1.03);
}



/*  SECCION TRIVIA HOME — versión desktop */

@media (min-width: 992px) {


.quiz-home-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    
margin-bottom: 2rem;



    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    
    gap: 2;
  }
  



.quiz-home-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 5; 
  }


  #quiz-home .quiz-home-texto {
    padding: 2rem 3rem; 
  }

  #quiz-home .quiz-home-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
  }

  #quiz-home .quiz-home-btn {
    background-color: #ff1493;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }

  #quiz-home .quiz-home-btn:hover {
    background-color: #d90f7a;
  }
}


@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .seccion-home-quiz {
    padding: 4rem 1.5rem;
  }

  .divider {
    margin: 3rem auto;
  }
}

/*///////////////////////directoras////////////////*/
/* 🔸 SECCIÓN DE BIOGRAFÍA */
.biografia {
  margin-bottom: 2rem;
}



.biografia p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #111;
  text-align: left;
}

@media (min-width: 992px) {
  .biografia p {
    column-count: 2;
    column-gap: 3rem;
    text-align: left;
  }
}

/* 🔸 PREMIOS DESTACADOS */
.premios-internacional {
  
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}




/* Lista de premios */


.premios-directoras {
  list-style: none;
  padding: 0;
}

.premios-directoras li {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.premios-directoras li:last-child {
  border-bottom: none;
}

.star-directoras {
  color: #ff1493;
  font-size: 1.4rem;
  margin-top: 0.25rem;
}

.texto-directoras strong {
  font-weight: 700;
}

.texto-directoras {
  color: #111;
  line-height: 1.4;
}


/* Responsive */
@media (max-width: 768px) {


  .premios-header h2 {
    font-size: 1.6rem;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
  }

  .arrow-svg {
    width: 18px;
    height: 18px;
  }

  .premios-directoras li {
    gap: 0.75rem;
  }
}

/* 🔸 SECCIÓN DE TÍTULOS DESTACADOS */
.peliculas-destacadas {
  margin-bottom: 4rem;
}


.peliculas-destacadas ul {
  list-style: none;
  padding: 0;
}

.movie-img {
    width: 180px; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 8px;
    
}

.peliculas-destacadas li {
  display: grid; 
  grid-template-columns: 180px 1fr auto; 
  gap: 1.5rem; 
  align-items: center;
  padding: 1.5rem 0; 
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.peliculas-destacadas li:last-child {
  border-bottom: none;
}
.stars {
  color: #ff1493; 
  font-size: 1.2rem;
  font-weight: 700;
}

.boton-resenas {
    text-align: center;
    margin-top: 70px;
}

.btn-resenas {
    display: block;
    width: fit-content; 
    margin-left: auto; 
    margin-right: auto; 
    
    background-color: #ff66b2; 
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-resenas:hover {
    background-color: #e0559c;
}

/* 🔸 SECCIÓN DE RESEÑAS */
.review-section {
  background-color: white;
  padding: 2rem;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 4rem;
}

.review-section h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}

label.review {
  display: block;
  margin-bottom: 5px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.review-section form {
  display: flex;
  flex-direction: column;
}

.review-section label {
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.review-section input,
.review-section select,
.review-section textarea {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 15px;
}

.review-section button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #ff1493;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
 
}

.review-section button:hover {
  background-color: #d90f7a;
}

/* 🔸 VIDEO */
.video-nota {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.video-nota iframe {
  width: 100%;
  border: none;
}


video {
  width: 100%;
  max-width: 800px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}



/* 🔸 RESPONSIVE */
@media (max-width: 768px) {
 
.peliculas-destacadas li {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; 
    gap: 1rem; 
  }

  
  .movie-img {
    width: 100%; 
    max-width: 280px; 
    height: auto; 
  }
}










@keyframes aparecer {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

.opcion {
  margin-top: 20px;
  text-align: center;
}

.opcion img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border: 3px solid #ffef00; 
}

.opcion p {
  margin: 5px 20px;
  color: #555555; 
}



/*/////////////COMUNIDAD////////////////*/




:root {
  --color-primario: #ff008c;
  --color-primario-suave: #ff1495b1;
  --color-fondo: #f9f3eb;
  --color-blanco: #fff;
  --color-texto: #111;
  --color-gris: #777;
  --color-borde: rgba(0, 0, 0, 0.1);
}

/* ------------------ ESTRUCTURA GENERAL ------------------ */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-fondo);
  color: var(--color-texto);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
}

/* ------------------ HEADER ------------------ */
header {
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primario);
}

.filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.filters select,
.filters input[type="checkbox"] {
  background-color: var(--color-blanco);
  border: 1px solid var(--color-borde);
  color: var(--color-texto);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.filters label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ------------------ LAYOUT ------------------ */
.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

/* ------------------ SIDEBAR ------------------ */
.sidebar {
  background-color: var(--color-blanco);
  border: 1px solid var(colo);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primario);
  margin-bottom: 0.8rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.chip {
  background-color: #fff0f7;
  border: 1px solid var(--color-borde);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  color: var(--color-texto);
  cursor: pointer;
  transition: all 0.3s ease;
}

.chip:hover {
  background-color: var(--color-primario);
  color: var(--color-blanco);
}

/* ------------------ POSTS ------------------ */
.feed {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post {
  background-color: var(--color-blanco);
  border: 1px solid var(--color-borde);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.post-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-primario-suave);
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.meta .name {
  font-weight: 600;
  color: var(--color-primario);
}

.meta .sub {
  font-size: 0.8rem;
  color: var(--color-gris);
}

.post-body {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.post-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  background: var(--color-primario);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-blanco);
  transition: all 0.3s ease;
}

.btn:hover {
  color: var(--color-primario);
}

/* Estilo Botón Like */

.btn-like {
  background: transparent;
  border: 1.5px solid var(--color-primario);
  color: var(--color-primario);
  padding: 0.4rem 0.8rem; 
  line-height: 1; 
}

.btn-like:not(.active):hover {
  background: #fff0f7; 
  color: var(--color-primario);
}

/* Activo */
.btn-like.active {
  background: var(--color-primario);
  color: var(--color-blanco);
  border-color: var(--color-primario);
}


.btn-like.active:hover {
  background: var(--color-primario-suave);
  color: var(--color-blanco);
}

.replies {
  margin-top: 1rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.reply {
  background-color: #fff0f7;
  border: 1px solid var(--color-borde);
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
}

/* ------------------ BOTÓN FLOTANTE ------------------ */
.fab {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--color-primario);
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 999;
}

.fab:hover {
  background-color: var(--color-primario-suave);
}

/* ------------------ MODAL ------------------ */
.modal-back {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.modal {
  background-color: var(--color-blanco);
  border-radius: 10px;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.modal h3 {
  color: var(--color-primario);
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal textarea,
.modal input,
.modal select {
  width: 100%;
  border: 1px solid var(--color-borde);
  border-radius: 6px;
  padding: 0.8rem;
  margin-top: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.modal textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1rem;
}

.primary {
  background-color: var(--color-primario);
  border: none;
  color: var(--color-blanco);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.primary:hover {
  background-color: var(--color-primario-suave);
}

/* ------------------ ESTADOS ------------------ */
.empty {
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--color-borde);
  color: var(--color-gris);
  border-radius: 6px;
  font-style: italic;
}

/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .sidebar {
    display: none;
  }

  .feed {
    order: 1;
  }

  .filters {
    justify-content: flex-start;
  }
}


/* Responsive */
@media (max-width: 768px) {

  .quiz-home-container {
    padding: 1.8rem;
  
  }
}






/* ============================================= */
/* 🔸 ESTILOS PARA SECCIONES DESPLEGABLES <details> */
/* ============================================= */


summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none; 
}

summary::-webkit-details-marker {
  display: none;
}


.flecha-svg {
  width: 24px;
  height: 24px;
  stroke: #111;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}


details[open] > summary .flecha-svg {
  transform: rotate(180deg);
}

.biografia summary h2,
.peliculas-destacadas summary h2,
.premios-internacional summary h2 {
    border-bottom: 2px solid #111;
    display: inline-block;
    margin-bottom: 15px; 
}




/* //////////////////////// SOBRE NOSOTRAS //////////////////////////////////// */


.brand-nosotras {
    display: flex;
    align-items: center;
    gap: 14px
}

.h1-titulo-pagina-nosotras {
    font-weight: 700;
    margin-top: 20px;
    color: #ff0090;
    margin-bottom: 15px;
}

.subtitulos-nosotras {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 1rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}

.contenedor-img-nosotras {
    width: auto;
    align-items: center;
}

.img-nosotras {
    margin-top: 5px;
    margin-bottom: 15px;
    width: 100%;
}

.tagline-nosotras {
    margin: 2px 0 0;
    color: var(--muted)
}

.sobre-nosotras {
    display: block
}

.section-titulo-nosotras {
    color: #ff008c;
    margin: 16px 0 8px;
    font-size: 1.15rem
}

.sobre p {
    color: #000000;
    line-height: 1.6;
    margin: 0 0 12px
}

.intro-cta-nosotras {
    color: #000000;
    margin: 6px 0 10px
}

.cta-grid-nosotras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 20px 0
}

@media (max-width:980px) {
    .cta-grid-nosotras {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:560px) {
    .cta-grid-nosotras {
        grid-template-columns: 1fr
    }
}

.cta-nosotras {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #ff008c;
    padding: 14px
}

.cta-emoji-nosotras {
    font-size: 20px
}

.cta-titulo-nosotras {
    font-weight: 700;
    text-decoration: none;
    color: #FFFF00
}

.cta-desc-nosotras {
    color: #ffffff;
    font-size: .95rem
}


/* ----------------------CSS PERFIL------------------------ */
.perfil {
  display: flex;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.foto-perfil {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.info-perfil h2 {
  margin: 0;
}

.usuario {
  color: #ff0090;
  margin: 2px 0;
}

/* ===== SECCIONES ===== */
.seccion-perfil {
  border-top: 1px solid #ddd;
  padding: 0 15px;
}

.encabezado-seccion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 0;
  background-color: #fff;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #ddd;
  list-style: none;
}

.encabezado-seccion::-webkit-details-marker {
  display: none;
}

.encabezado-seccion h3 {
  margin: 0;
  font-size: 1.05em;
}

.flecha {
  font-size: 1.3em;
  transition: transform 0.3s ease;
}

details[open] .flecha {
  transform: rotate(180deg);
}

/* Animación de despliegue */
.contenido-seccion {
  margin-bottom: 12px;
  animation: abrir 0.3s ease;
}

@keyframes abrir {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESEÑAS ===== */
.resena {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.imagen-resena {
  width: 130px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.info-resena {
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: 1.3em;
}

.info-resena h4 {
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  color: #111;
}

.directora {
  margin: 2px 0 4px;
  font-size: 0.9em;
  color: #555;
}

.comentario {
  margin: 0 0 4px;
  font-size: 0.85em;
  color: #555;
  font-style: italic;
}

.estrellas {
  color: #ff0090;
  font-size: 0.9em;
  letter-spacing: 1px;
  text-align: right;
  margin: 0;
}

/* ===== FAVORITOS ===== */
.favoritos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
  padding: 10px 0;
}

.favorito {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  max-width: 160px;
  /* o el ancho que prefieras */
  margin: 0 auto;
}

.favorito:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.imagen-favorito {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.info-favorito {
  padding: 8px;
}

.info-favorito h4 {
  margin: 0;
  font-size: 0.95em;
  color: #111;
}

.info-favorito .directora {
  margin: 3px 0 0;
  font-size: 0.85em;
  color: #666;
}

/* ===== TEXTO EDITABLE ===== */
.editarlos {
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}


.nota {
  font-size: 0.9em;
  color: #888;
  text-align: center;
  margin-top: 10px;
}

/* ////////////////DIRECTORAS NACIONALES///////////////////*/

/* === BLOQUE PRINCIPAL DE DIRECTORAS === */

/* 🩷 HERO PRINCIPAL */
.contenido .noticia-principal {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.contenido .imagen-principal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.contenido .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0.6) 90%);
}

.contenido .texto-principal {
  position: absolute;
  bottom: 3rem;
  left: 2rem;
  color: var(--color_blanco);
  z-index: 2;
}

.contenido .texto-principal h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.contenido .texto-principal p {
  font-size: 1.2rem;
  margin: 0.5rem 0 1.2rem;
}

.boton-principal {
  display: inline-block;
  background-color: var(--color_primario);
  color: var(--color_blanco);
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.boton-principal:hover {
  background-color: var(--color_primario_suave);
}


/* 🎛️ SECCIÓN DE FILTRO */
.search-container {
  background-color: #fff;
  border-radius: 8px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto 4rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.filter-toggle button {
  background: none;
  border: none;
  color: var(--color_primario);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.filter-toggle .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.filters {
  margin-top: 1.5rem;
  display: none;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.filters.mostrar {
  display: flex;
}

.filters label {
  font-weight: 600;
  color: #333;
}

.filters select {
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.btn-pink {
  background-color: var(--color_primario);
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-pink:hover {
  background-color: var(--color_primario_suave);
}

/* 🖼️ GRID DE DIRECTORAS */
.artists-section {
  padding: 3rem var(--padding_left_right);
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.artist-link {
  text-decoration: none;
  color: inherit;
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.artist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.15);
}

.artist-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.artist-card:hover img {
  transform: scale(1.05);
}

.artist-name {
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem;
  color: #111;
}

.vermas {
  text-align: center;
  margin-top: 2rem;
}

.vermas a {
  text-decoration: none;
  color: var(--color_primario);
  font-weight: 600;
  transition: color 0.3s;
}

.vermas a:hover {
  color: var(--color_primario_suave);
}

/* 🔸 Responsive */
@media (max-width: 768px) {
  .contenido .texto-principal h2 {
    font-size: 2rem;
  }

  .contenido .texto-principal p {
    font-size: 1rem;
  }

  .filters {
    flex-direction: column;
  }

  .artist-card img {
    height: 200px;
  }
}

/* ////////////////TEMA OSCURO -- INTERNACIONALES////////////*/

/* ==== MODO OSCURO SOLO PARA DIRECTORAS INTERNACIONALES ==== */

.tema-oscuro {
  background-color: #111;
  /* Fondo general oscuro */
  color: #f5f5f5;
  /* Texto claro */
}

/* Encabezado y navegación */
.tema-oscuro .header {

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.tema-oscuro .navbar .link {
  color: #f5f5f5;
}

.tema-oscuro .navbar .link:hover {
  color: #ff66b3;
  /* Ejemplo: rosa de tu paleta */
}

/* Hero */
.tema-oscuro .noticia-principal .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.tema-oscuro .texto-principal h2,
.tema-oscuro .texto-principal p {
  color: #fff;
}

/* Filtros */
.tema-oscuro .search-container {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px;
}

.tema-oscuro select,
.tema-oscuro button {
  background-color: #333;
  color: #f5f5f5;
  border: 1px solid #555;
}

/* Tarjetas */
.tema-oscuro .artist-card {
  background-color: #222;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.tema-oscuro .artist-name {
  color: #fff;
}

/* Footer */
.tema-oscuro .pie {
  background-color: #111;
  color: #ccc;
}


/* ===========================
   ESTILOS EXCLUSIVOS DEL QUIZ
   =========================== */

.quiz-contenedor {
  font-family: "Montserrat", sans-serif;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  border: 2px solid #dddddd;
  margin: 40px auto;
  color: #222222;
  background: linear-gradient(135deg, #ffffff, #fffef5);
}

.quiz-contenedor .quiz-imagen-principal {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ff0090;
}

.quiz-contenedor h1 {
  font-weight: 700;
  margin-top: 20px;
  color: #ff0090;
}

.quiz-contenedor .quiz-introduccion {
  font-size: 1rem;
  color: #555555;
  margin: 10px 30px 20px;
}

.quiz-contenedor .quiz-pregunta {
  margin: 20px 30px;
  text-align: left;
}

.quiz-contenedor .quiz-pregunta p {
  font-weight: 600;
  margin-bottom: 10px;
  color: #ff0090;
}

.quiz-contenedor label {
  display: block;
  background: #fff8fc;
  border: 2px solid #dddddd;
  border-radius: 12px;
  padding: 10px 15px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quiz-contenedor label:hover {
  background: #fff2f9;
  border-color: #ffef00;
}

.quiz-contenedor input[type="radio"] {
  display: none;
}

.quiz-contenedor input[type="radio"]:checked+span {
  font-weight: 700;
  color: #ff0090;
}

.quiz-contenedor span {
  margin-left: 5px;
}

.quiz-contenedor .quiz-seccion-boton {
  text-align: center;
  margin-top: 30px;
}

.quiz-contenedor input[type="submit"] {
  background-color: #ffef00;
  color: #222222;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.quiz-contenedor input[type="submit"]:hover {
  background-color: #ff0090;
  color: #ffffff;
  transform: scale(1.05);
}

.quiz-contenedor .quiz-resultado {
  margin-top: 40px;
  display: none;
  animation: quiz-aparecer 0.6s ease;
}

@keyframes quiz-aparecer {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-contenedor .quiz-opcion {
  margin-top: 20px;
  text-align: center;
}

.quiz-contenedor .quiz-opcion img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid #ffef00;
}

.quiz-contenedor .quiz-opcion p {
  margin: 5px 20px;
  color: #555555;
}

@media (max-width: 600px) {
  .quiz-contenedor {
    margin: 10px;
  }

  .quiz-contenedor h1 {
    font-size: 1.4rem;
  }
}

.quiz-contenedor .quiz-boton {
  display: inline-block;
  background-color: #ffef00;
  color: #222222;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.quiz-contenedor .quiz-boton:hover {
  background-color: #ff0090;
  color: #ffffff;
  transform: scale(1.05);
}


/* //////////////////////// RESEÑAS //////////////////////////////////// */

.h1-titulo-pagina-reseñas {
    font-weight: 700;
    margin-top: 20px;
    color: #ff0090;
    margin-bottom: 15px;
}

.contenedor-resultados {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px
}

.site-title {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: .3px
}

.tagline {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: .95rem
}

.motto {
    color: var(--muted);
    margin: 16px 0
}

.grid-reseñas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

@media (max-width:960px) {
    .grid-reseñas {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:620px) {
    .grid-reseñas {
        grid-template-columns: 1fr
    }
}

.card-reseñas {
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.poster-reseñas {
    position: relative;
    aspect-ratio: 16/9;
    background: #27272d;
    overflow: hidden
}

.poster-reseñas img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.contenido-reseñas {
    padding: 14px 14px 12px
}

.titulo-reseñas {
    margin: 0 0 2px;
    font-size: 1.05rem
}

.año-reseñas {
    color: var(--muted);
    font-weight: 500
}

.directora-reseñas {
    margin: 6px 0 8px;
    font-size: .92rem;
    color: var(--muted)
}

.sinopsis-reseñas {
    margin: 6px 0 10px;
    color: #000000;
    line-height: 1.4
}

.chips-reseñas {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
    padding: 0;
    list-style: none
}

.chip-reseñas {
    background: var(--chip);
    border: 1px solid #4646466f;
    color: #4646466f;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: .78rem
}

.frase-reseñas {
    margin: 10px 0;
    padding: 10px 12px;
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    color: #ff008c;
    font-style: italic
}

.rating-reseñas fieldset {
    border: 0;
    padding: 0;
    margin: 8px 0;
}

.rating-reseñas legend {
    position: absolute;
    left: -9999px
}

.estrellas-reseñas {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px
}

.estrellas-reseñas input {
    position: absolute;
    opacity: 0
}

.estrellas-reseñas label {
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #2f2f3a;
    user-select: none
}

.estrellas-reseñas input:checked~label,
.estrellas-reseñas label:hover,
.estrellas-reseñas label:hover~label {
    color: var(--warn)
}

.promedio-reseñas {
    font-size: .9rem;
    color: var(--muted);
    margin-left: 8px
}

.autora-reseñas {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    margin-top: 20px;
}

.avatar-reseñas {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #333;
    overflow: hidden;

}

.avatar-reseñas img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.byline-reseñas {
    font-size: .9rem;
    color: var(--muted)
}

.acciones-reseñas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 12px
}

.btn-reseñas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--panel);
    border: 1px solid #2d2d38;
    color: #000000;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: .9rem
}

.btn-reseñas.ghost {
    background: transparent;
    border-color: #343443;
    color: var(--muted)
}

.review-reseñas {
    background: #ff008c;
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
    color: #eaeaf4;
    line-height: 1.5
}

.comentarios-reseñas {
    margin: 10px 0 14px
}

.comentarios-reseñas summary {
    cursor: pointer;
    color: var(--muted)
}

.comentarios-reseñas {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #2a2a36
}

.legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}


/* //////////////////////// RESULTADO TRIVIA //////////////////////////////////// */




a {
    color: inherit;
    text-decoration: none;
}


.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}


.tagline {
    margin: 2px 0 0;
    color: var(--muted);
}


/* Resultado principal */
.resultado-pag {
    margin: 10px 0 18px;
}

.hero-resultado {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    background: var(--panel);
    border: 1px solid #e7e5ec;
    border-radius: var(--radius);
    padding: 14px;
}

@media (max-width:760px) {
    .hero-resultado {
        grid-template-columns: 1fr;
    }
}

.portrait {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #ddd;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.identity .name {
    margin: 2px 0 8px;
    font-size: 20px;
    color: #000000;
}

.identity .bio {
    margin: 0;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Afinidad */
.match {
    margin: 16px 0;
}

.match h3 {
    margin: 0 0 10px;
}

.traits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.traits li {
    display: grid;
    grid-template-columns: 220px 1fr 52px;
    align-items: center;
    gap: 10px;
}

.trait {
    color: #2a2a2a;
}

.bar {
    height: 10px;
    background: #ecebf2;
    border: 1px solid #d5d5e0;
    border-radius: 999px;
    overflow: hidden;
}

.fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #ff9ac6);
}

.w-90 {
    width: 90%;
}

.w-85 {
    width: 85%;
}

.w-80 {
    width: 80%;
}

.w-70 {
    width: 70%;
}

.pct {
    color: var(--muted);
    font-size: .9rem;
    text-align: right;
}

/* Películas sugeridas */
.starter {
    margin: 20px 0;
}

.films {
    list-style: decimal;
    padding-left: 18px;
    margin: 6px 0 10px;
    display: grid;
    gap: 10px;
}

.films li {
    background: #FFFFFF;
    border: 1px solid #e2e0ea;
    border-radius: 14px;
    padding: 10px;
}

.note {
    color: var(--muted);
}

/* Cita */
.quote {
    margin: 10px 0 10px;
}

.quote blockquote {
    margin: 0;
    padding: 14px;
    border-left: 3px solid var(--accent);
    background: #f9f7fc;
    border-radius: 6px;
    color: #3b2e35;
    font-style: italic;
}

.caption {
    color: var(--muted);
    margin: 6px 0 0;
}

/* Siguientes pasos */
.next {
    margin: 18px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width:920px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:520px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    background: #ff0090;
}

.cta.ghost {
    background: transparent;
    color: var(--muted);
    border-color: #d5d5e0;
}

#resultado h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}

.subtitulos-resultados {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #111;
  display: inline-block;
}


.h1-titulo-pagina {
    font-weight: 700;
    margin-top: 20px;
    color: #ff0090;
    margin-bottom: 15px;
}


/* --------------------------------------
   FOOTER
----------------------------------------- */


.footer {
  background-color: #ff1493;
  color: white;
  padding: 3rem 2rem 1.5rem 2rem;
  margin-top: 6rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* Columna de marca */

.footer-logo-img {
  width: 140px;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 1rem;
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 40px; 
  height: 40px;
  border: 1.5px solid white; 
  border-radius: 50%; 

 
  display: inline-flex; 
  align-items: center;
  justify-content: center;

 
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.footer-social a img {
  width: 20px; 
  height: 20px;
  object-fit: contain; 
}

.footer-social a:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* Columna de enlaces */
.footer-columna h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
  padding-bottom: 0.3rem;
}

.footer-links-2col {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.6rem 1.2rem;
}

.footer-links-2col li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.footer-links-2col li a:hover {
  opacity: 0.8;
}

/* Parte inferior (legal) */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-links-2col {
    grid-template-columns: 1fr;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer {
    text-align: left;
    padding: 2.5rem 1.5rem 1rem 1.5rem;
  }
}
